Merged
Conversation
Deploying moonbase-flippy-mem with
|
| Latest commit: |
a094cc7
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://3371eebb.moonbase-4zv.pages.dev |
| Branch Preview URL: | https://one-shot-chess-indexer-claud.moonbase-4zv.pages.dev |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Chess Game Indexer with ChessQL Query Language
Adds a chess game indexing service that fetches games from chess.com, extracts tactical motifs (pins, forks, skewers, etc.), and provides a
SQL-like query language (ChessQL) for searching.
Features
Indexing Pipeline
ChessQL Query Language
In-Process Mode
API
Index games
POST /index {"player":"hikaru","platform":"CHESS_COM","startMonth":"2026-01","endMonth":"2026-01"}
Check status
GET /index/{id}
Query with ChessQL
POST /query {"query":"motif(pin) AND white.elo > 2700","limit":10,"offset":0}
Architecture
HTTP API → InMemoryQueue → IndexWorker → H2/PostgreSQL
↓
FeatureExtractor → MotifDetectors
Test Coverage
Documentation
Running Locally
INDEXER_DB_URL="jdbc:h2:mem:indexer;DB_CLOSE_DELAY=-1"
bazel run //jvm/src/main/java/com/muchq/indexer:indexer